// Aufgabe_3_3_zarte_Farben

function setup() {
 createCanvas(400, 400);
 background(200);
}

function draw() {
 stroke(255);
 strokeWeight(3);
 fill(255, 228, 225);
 ellipse(200, 200, 300, 300);
 fill(135, 206, 250);
 ellipse(200, 200, 200, 200);
 fill(127, 255, 212);
 ellipse(200, 200, 100, 100);
}
